home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / batch / compcun < prev    next >
Encoding:
Text File  |  1992-04-18  |  178 b   |  11 lines

  1. #! /bin/sh
  2. # Invoke compress, adding silly 2.11-compatible header.
  3.  
  4. echo "#! cunbatch"
  5. compress
  6. status=$?
  7. case "$status" in
  8. 2)    status=0    ;;    # compress stupidity
  9. esac
  10. exit $status
  11.